/* Sidebar Button */
.sidebar-toggle-btn {
    font-size: 24px;
    background-color:transparent;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position:absolute;
    top: 40px;
    right: 50px;
    z-index: 1;
  }
  
  .sidebar-toggle-btn i {
    font-size: 30px;
  }
  
  /* Popup Sidebar Styles (Positioned Under the Button) */
  .popup-sidebar {
    width: 25%;  /* Full width, or adjust as needed */
    height: auto;
    position:absolute;
    top: 60px;  /* Place the sidebar directly under the button */
    right: 20px;  /* Align with the button */
    background-color: rgba(0, 0, 0, 0.8); /* Transparent black background */
    display: none; /* Initially hidden */
    z-index: 999;
    padding: 20px;
    border-radius: 8px;  /* Optional: Rounded corners for the sidebar */
  }
  
  /* Open Sidebar */
  .popup-sidebar.open {
    display: block; /* Display it when the 'open' class is added */
  }
  
  /* Popup Content Styles */
  .popup-content {
    color: white;
    text-align: center;
  }
  
  .popup-content h2 {
    margin-bottom: 20px;
  }
  
  .popup-content p {
    margin-bottom: 20px;
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 36px;
    color: white;
    cursor: pointer;
  }
  
  .close-btn:hover {
    color: #ddd;
  }
  
  /* Contact Form */
  .contact-form label {
    display: block;
    margin: 10px 0 5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
  }
  
  .contact-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #45a049;
  }
/* Dropdown Button */
.dropdown-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: relative; /* Needed for positioning the dropdown menu */
  }
  
  /* Dropdown Menu */
  .dropdown-content {
    display: none; /* Initially hidden */
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px; /* Adjust width of the dropdown */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1; /* Makes sure the dropdown appears above other elements */
  }
  
  /* Dropdown links */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Hover effect for links */
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown menu when the button is clicked */
  .dropdown-content.show {
    display: block;
  }
    